home *** CD-ROM | disk | FTP | other *** search
/ The 50th Anniversary of …National Assembly Library / The 50th Anniversary of the National Assembly Library.iso / bal.dxr / 00032.ls < prev    next >
Encoding:
Text File  |  2002-02-18  |  409 b   |  20 lines

  1. on mouseEnter
  2.   cursor([121, 122])
  3.   set the member of sprite 3 to 11
  4.   repeat with tt = 15 to 18
  5.     sprite(tt).visible = 1
  6.   end repeat
  7. end
  8.  
  9. on mouseLeave
  10.   if rollover(15) or rollover(16) or rollover(17) or rollover(18) then
  11.     set the member of sprite 3 to 11
  12.   else
  13.     set the member of sprite 3 to 36
  14.     repeat with tt = 15 to 18
  15.       sprite(tt).visible = 0
  16.     end repeat
  17.   end if
  18.   cursor(-1)
  19. end
  20.